博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
完成个人中心—导航标签2
阅读量:6229 次
发布时间:2019-06-21

本文共 2804 字,大约阅读时间需要 9 分钟。

    1. 个人中心—视图函数带标签页面参数tag
      @app.route('/usercenter/<user_id>/<tag>')
      def usercenter(user_id, tag):
         if tag == ‘1':
             return render_template('usercenter1.html', **context)
    2. 个人中心—导航标签链接增加tag参数
      <li role=“presentation”><a href=“{
      { url_for(‘usercenter’,user_id = user.id,tag = ‘1’) }}">全部问答</a></li>
    3. 个人中心—有链接到个人中心页面的url增加tag参数
      u <a href="{
      { url_for('usercenter',user_id = session.get('userid'), tag=1) }}">{
      { session.get('user') }}</a>
    4. @app.route('/usercenter/
      /
      ')def usercenter(user_id,tag): user = User.query.filter(User.id == user_id).first() context = { 'usern': user.id, 'username': user.username, 'fankui':user.fankui, 'comment':user.comment } if tag =='1': return render_template('usercenter1.html',**context) elif tag == '2': return render_template('usercenter2.html', **context) else: return render_template('usercenter3.html', **context)

       

    5. {% extends'danghangye.html' %}{% block title %}个人中心{% endblock %}{% block head %}{% endblock %}{% block main %}    
      {% block usercenter %}{% endblock %}{% endblock %}
                              {% block head %}{% endblock %}            
      {% block title %}{% endblock %}首页
      {% block main %}

      {

      {username}}请登录

      {% for foo in fankui %}
    6. {
      {foo.author.username}}评论({
      {foo.comment|length}})
      {
      {foo.biaoti}}
      {
      {foo.creat_time}}

      {

      {foo.questionDetail}}

    7. {% endfor %}
      {% endblock %}

       

转载于:https://www.cnblogs.com/cyj5201314/p/8041485.html

你可能感兴趣的文章
JavaScript强化教程 —— Cocos2d-JS自动JSB绑定规则修改
查看>>
configure: error: in `/root/httpd-2.2.11/srclib/apr': c
查看>>
CentOS7搭建Kubernetes-dashboard管理服务
查看>>
我的友情链接
查看>>
文件管理系统的学习
查看>>
邮件服务器_安装准备和安装之七_(Windows Server 2008 R2 SP1英文版)
查看>>
A段架構師的關鍵思考技術:戰術引導戰略
查看>>
主板模式的两项<通用性>接口
查看>>
Nginx & PCRE 安装问题
查看>>
hdu1269模板tarjan
查看>>
开发任意网站Android客户端
查看>>
通过WindowsXPMode,Win7下照样使用IE8
查看>>
4. 异常的处理
查看>>
popToViewController的奇异用法
查看>>
static关键字(二)
查看>>
开放寻址法
查看>>
buildroot下查找外部编译器通过ext-toolchain-wrapper调用的参数
查看>>
MySQL Replication 主主配置详细说明
查看>>
Linux的任务调度
查看>>
linux之cp/scp命令+scp命令详解
查看>>